home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / VerticalLine.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-16  |  470 b   |  13 lines

  1. package symantec.itools.awt.shape;
  2.  
  3. public class VerticalLine extends Rect {
  4.    public VerticalLine() {
  5.       super.width = 2;
  6.    }
  7.  
  8.    public void reshape(int var1, int var2, int var3, int var4) {
  9.       super.height = var4;
  10.       super.reshape(var1, var2, super.width, var4);
  11.    }
  12. }
  13.